home *** CD-ROM | disk | FTP | other *** search
- // Simple testbed for Macintosh sample code
- //
- // Dave Polaschek
- // Developer Technical Support
- // AppleLink: DEVSUPPORT
- //
- // Copyright 1995, Apple Computer,Inc
- //
- // This file contains main, and nothing else.
- // dave 8/15/95 initial cut
-
- #include <stdio.h>
-
- extern OSErr test(void); // in CurrentPrinter.c
-
-
- void main(void)
- {
- OSErr testResult;
-
- testResult = test();
-
- printf("Return value from test() = %d\n",testResult);
- }
-
-